home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Examples / Table / Include / Table.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-08  |  1.3 KB  |  80 lines  |  [TEXT/MPS ]

  1. #ifndef TABLE_HPP
  2. #define TABLE_HPP
  3.  
  4. //========================================================================================
  5. //
  6. //    File:                Table.hpp
  7. //    Release Version:    $ 1.0d11 $
  8. //
  9. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13. #if !defined(FW_BUILD_MAC)
  14.  
  15. // ----- Foundation Includes -----
  16.  
  17. #include "FWCommon.h"
  18. #include "FWTaskG.h"
  19. #include "FWDebug.h"
  20. #include "FWExcLib.h"
  21. #include "FWCollec.h"
  22. #include "FWFoundU.h"
  23. #include "FWMemory.h"
  24. #include "FWNotifn.h"
  25. #include "FWRunTyp.h"
  26. #include "FWStream.h"
  27. #include "FWString.h"
  28.  
  29. // ----- OS Includes -----
  30.  
  31. #ifndef FWPOINT_H
  32. #include "FWPoint.h"
  33. #endif
  34.  
  35. #ifndef FWRECT_H
  36. #include "FWRect.h"
  37. #endif
  38.  
  39. #ifndef FWODGEOM_H
  40. #include "FWODGeom.h"
  41. #endif
  42.  
  43. // ----- OpenDoc Includes -----
  44.  
  45. #ifndef _ODTYPES_
  46. #include <ODTypes.h>
  47. #endif
  48.  
  49. #ifndef SOM_ODDragAndDrop_xh
  50. #include <DragDrp.xh>
  51. #endif
  52.  
  53. #ifndef SOM_Module_OpenDoc_StdProps_defined
  54. #include <StdProps.xh>
  55. #endif
  56.  
  57. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  58. #include <StdTypes.xh>
  59. #endif
  60.  
  61. #ifndef SOM_ODStorageUnit_xh
  62. #include <StorageU.xh>
  63. #endif
  64.  
  65. #ifndef SOM_ODShape_xh
  66. #include <Shape.xh>
  67. #endif
  68.  
  69. #ifndef SOM_ODTransform_xh
  70. #include <Trnsform.xh>
  71. #endif
  72.  
  73. #ifndef SOM_ODSession_xh
  74. #include <ODSessn.xh>
  75. #endif
  76.  
  77. #endif
  78.  
  79. #endif // TABLE_HPP
  80.